public static IEnumerable<int> Numbers(int max) { for(int i = 0; i < max; i++) { yield return i; } }